projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68d1024
)
(sys_subshell): PRIO_PROCESS renamed to SET_EMACS_PRIORITY.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 13 May 1994 07:18:38 +0000
(07:18 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 13 May 1994 07:18:38 +0000
(07:18 +0000)
Don't call nice if emacs_priority is positive.
src/sysdep.c
patch
|
blob
|
history
diff --git
a/src/sysdep.c
b/src/sysdep.c
index d7b256c8454e84310507eeb1aa29b41a02e72bd7..cbf928e786b1ffd072af3e1fc1e26dae25eab520 100644
(file)
--- a/
src/sysdep.c
+++ b/
src/sysdep.c
@@
-697,11
+697,11
@@
sys_subshell ()
close_process_descs (); /* Close Emacs's pipes/ptys */
#endif
-#ifdef
PRIO_PROCESS
+#ifdef
SET_EMACS_PRIORITY
{
extern int emacs_priority;
- if (emacs_priority)
+ if (emacs_priority
< 0
)
nice (-emacs_priority);
}
#endif